html {
    background-color: #fcf8ef;
}

body {
    text-align: center;
    font-size: 20px;
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}

ol {
    margin-top: 0;
    padding-top: 0;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #c66480;
    cursor: pointer;
    color: #fcebf1;
}

label {
    cursor: pointer;
}

h1 {
    font-size: 300%;
    font-weight: bold;
    color: #be5271;
    padding: 0px;
    margin: 0px;
}


.container {
    max-width: 100%;
    padding: 10px;
}

.button {
    justify-content: center;
    padding: 10px 20px;
    margin: 10px;
    font-size: 1em;
    text-align: center;
    border-radius: 20px;
    border-color: #c66480;
    background-color: #f4c7d0;
    color: #be5271;
    font-family:'Times New Roman', Times, serif;
}

.link {
    color: #9ca835;
}

.description {
    color: #9ca835;
    text-align: center;
}
    

#header {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}

#list {
    text-align: left;
    margin-left: 10px;
    margin-right: 20px;
    color: #4a6644;
}

#score {
    text-align: center;
    color: #c66480;
}


@media (max-width: 768px) {
    img {
        max-width: 100%; /* Ensures images don’t overflow */
    }

    .container {
        padding: 5px;
    }

    .button {
        font-size: 0.9em;
        padding: 16px 16px;
    }
}